home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample SMSAM / SampleSMSAM Source / BuildingBlocks / Comparable.cp < prev    next >
Encoding:
Text File  |  1995-07-28  |  945 b   |  47 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Comparable.cp
  3.  
  4.     Copyright:    © 1991-1994 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Part of the AOCE Sample SMSAM Package.  Consult the license
  8.     which came with this software for your specific legal rights.
  9.  
  10. */
  11.  
  12.  
  13.  
  14. #ifndef    __COMPARABLE__
  15. #include "Comparable.h"
  16. #endif
  17.  
  18. #ifndef    __FSTREAM__
  19. #include "FStream.h"
  20. #endif
  21.  
  22. /***********************************|****************************************/
  23.  
  24. #pragma segment Comparable
  25.  
  26. /***********************************|****************************************/
  27.  
  28. AComparable::AComparable ()
  29. {
  30. }
  31.  
  32. /***********************************|****************************************/
  33.  
  34. AComparable::~AComparable ()
  35. {
  36. }
  37.  
  38. /***********************************|****************************************/
  39.  
  40. ostream&
  41. AComparable::operator >> ( ostream& stream ) const
  42. {
  43.     return stream << "AComparable: " << (void*) this;
  44. }
  45.  
  46. /***********************************|****************************************/
  47.